home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / AOF / DECAOF / decaof / cproto_h next >
Text File  |  1992-11-20  |  379b  |  19 lines

  1. /*
  2.  * protect non-ANSI C Compilers from function prototype arguments
  3.  *
  4.  * Andy Duplain, BT Customer Systems, Brighton, UK.  duplain@btcs.bt.co.uk
  5.  */
  6.  
  7. #ifndef __CPROTO_H
  8. #define __CPROTO_H
  9.  
  10. #if defined (__STDC__) || defined(__cplusplus)
  11. #define P__(s)    s
  12. #define ANSI_C
  13. #else /* PCC compiler */
  14. #define P__(s)    ()
  15. #undef ANSI_C
  16. #endif /* ANSI compiler */
  17.  
  18. #endif /* __CPROTO_H */
  19.